home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Tetris / Source / RCS / ScoreKeeper.h,v < prev    next >
Encoding:
Text File  |  1971-02-13  |  606 b   |  59 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     91.12.07.03.36.56;  author melling;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Tetris 1.1
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @
  27. #import <objc/Object.h>
  28.  
  29. @@interface ScoreKeeper:Object
  30. {
  31.     id levels;
  32.     id names;
  33.     id score;
  34.     id scores;
  35.     id scoresWindow;
  36.     
  37.     id nameField;
  38.     int rank;
  39.     char path[BUFSIZ];
  40. }
  41.  
  42. - init;
  43.  
  44. - setScoresWindow:anObject;
  45.  
  46. - setZero;
  47. - addScore:(int)amount;
  48.  
  49. - updateHighScores:(int)level;
  50. - nameFieldEnd:sender;
  51. - windowWillClose:sender;
  52.  
  53. - writeScores;
  54.  
  55. - free;
  56.  
  57. @@end
  58. @
  59.